/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: rgb(255, 255, 255);
  line-height: 1.6;
}

/* ========== NAVBAR ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 5%;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 45px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #ff1500;
}

/* ========== HERO SECTION ========== */
.hero-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 20px 0;
  background-color: black;
  text-align: center;
}

.hero-image {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* ========== ABOUT SECTION ========== */
.about-container {
  max-width: 800px;
  margin: 20px auto 40px auto;
  padding: 20px;
  text-align: center;
}

.about-content h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }

  .menu {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .logo img {
  height: 20px;
}

  .menu li a {
    font-size: 10px;
  }

  .hero-image {
    max-width: 150px;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-image {
    max-width: 120px;
  }

  .about-content h2 {
    font-size: 1.4rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }

  .navbar {
    padding: 16px;
  }

  .logo img {
    height: 40px;
  }
}
